Uses of Class
edu.uky.ai.csp.kr.Domain
| Package | Description |
|---|---|
| edu.uky.ai.csp |
Contains classes for representing and solving simple constraint
satisfaction problems.
|
| edu.uky.ai.csp.kr |
Contains the knowledge representation for constraint satisfaction problems
that use simple binary equals and not equals constraints.
|
-
Uses of Domain in edu.uky.ai.csp
Methods in edu.uky.ai.csp that return Domain Modifier and Type Method Description DomainSudoku. getDomain(java.lang.String variable) -
Uses of Domain in edu.uky.ai.csp.kr
Methods in edu.uky.ai.csp.kr that return Domain Modifier and Type Method Description DomainDomain. clone()DomainProblem. getDomain(Variable variable)Returns the set of possible values that a given variable can be assigned in the initial state of this problem.DomainSolution. getDomain(Variable variable)Returns the domain (i.e.Methods in edu.uky.ai.csp.kr with parameters of type Domain Modifier and Type Method Description voidProblem. addVariable(Variable variable, Domain domain)Defines a new variable, along with all the possible values it can be assigned, for this problem.